home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / unshar.zip / INDEX.C < prev    next >
Text File  |  1989-12-20  |  113b  |  10 lines

  1. char *index(s, c)
  2. register char *s, c;
  3. {
  4.   do {
  5.     if (*s == c)
  6.         return(s);
  7.   } while (*s++ != 0);
  8.   return(0);
  9. }
  10.